home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / PUTS.C < prev    next >
C/C++ Source or Header  |  1996-06-25  |  144b  |  9 lines

  1. #include <stdio.h>
  2.  
  3. int puts(char *string)
  4. {
  5.     int rv = fputs(string,stdout);
  6.     if (rv == EOF)
  7.         return EOF;
  8.     return fputc('\n',stdout);
  9. }